AddToBack Method

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Adds an item to the back of the Deque. The indices of all existing items in the Deque are unchanged. This method is equivalent to Insert(Count, item) but is a little more efficient.

Namespace: Wintellect.PowerCollections
Assembly:  PowerCollections (in PowerCollections.dll)

Syntax

C#
public void AddToBack(
	T item
)
Visual Basic (Declaration)
Public Sub AddToBack ( _
	item As T _
)
Visual C++
public:
void AddToBack (
	T item
)

Parameters

item
T
The item to add.

Remarks

Adding an item to the back of the Deque takes a small constant amount of time, regardless of how many items are in the Deque.

See Also